home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1998 July
/
EnigmA AMIGA RUN 29 (1998)(G.R. Edizioni)(IT)[!][issue 1998-07 & 08].iso
/
earcd
/
utils
/
madhouse
/
developer
/
c
/
include
/
libraries
/
madblankersupport.h
Wrap
C/C++ Source or Header
|
1997-12-21
|
983b
|
36 lines
#ifndef LIBRARIES_MADBLANKERSUPPORT_H
#define LIBRARIES_MADBLANKERSUPPORT_H
/* PUBLIC: */
/* (tabsize = 3) */
#define MADBLANKERSUPPORT_NAME "madblankersupport.library"
#define MADBLANKERSUPPORT_VMIN 27
/* Be sure to open MADBLANKERSUPPORT_VMIN of the library. */
/* Returned by MBS_GetBlankjob() */
struct mbs_blankjob {
char *directory; /* the blanker's subdirectory */
LONG duration; /* duration time in seconds, 0 means: */
/* "exchange blankers" is turned off. */
char *language; /* used locale language */
};
/* Returned by MBS_ContinueBlanking() */
#define MBSCB_CONTINUE 0
#define MBSCB_TIMEOUT 1 /* Duration time exceeded. */
#define MBSCB_USERABORT 2 /* User aborted blanker. */
struct mbs_color {
LONG r,g,b; /* always 8bit values, 0...255 */
};
#ifdef SERVER_COMPILE
extern Library *madblankersupportbase = NULL;
extern mbs_madenvironment madenv;
#endif
#endif /* LIBRARIES_MADBLANKERSUPPORT_H */